form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form textarea {
    height: 120px;
    resize: none;
}

button {
    width: 100%;
    padding: 12px;
    background: #A03234;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #641f20;
    transition: 0.3s;
}

#status {
    margin-top: 10px;
    text-align: center;
}